When resuming from Dom0 S3, here 'irq' is -1, so we can't use it at
all. We should always use iommu->irq.
With the patch applied on the current tip 20153 and using the 2.6.18
Dom0, Dom0 S3 works fine (at least on my DQ35).
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
struct acpi_drhd_unit *drhd;
struct iommu *iommu;
struct iommu_flush *flush = NULL;
- int irq = -1;
+ int irq;
int ret;
unsigned long flags;
struct irq_cfg *cfg;
iommu->irq = irq;
}
- cfg = irq_cfg(irq);
- dma_msi_set_affinity(irq, cfg->domain);
+ cfg = irq_cfg(iommu->irq);
+ dma_msi_set_affinity(iommu->irq, cfg->domain);
clear_fault_bits(iommu);